home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2007 September / PCWSEP07.iso / Software / Linux / Linux Mint 3.0 Light / LinuxMint-3.0-Light.iso / casper / filesystem.squashfs / etc / cron.daily / 0anacron < prev    next >
Encoding:
Text File  |  2006-09-20  |  311 b   |  13 lines

  1. #!/bin/sh
  2. #
  3. # anacron's cron script
  4. #
  5. # This script updates anacron time stamps. It is called through run-parts
  6. # either by anacron itself or by cron.
  7. #
  8. # The script is called "0anacron" to assure that it will be executed
  9. # _before_ all other scripts.
  10.  
  11. test -x /usr/sbin/anacron || exit 0
  12. anacron -u cron.daily
  13.